COM AT^SVCC Get SIS support information
COM V1.0	08.12.04	T. Kleinmann	Started
COM V1.1 	27.01.05	T. Kleinmann    Re-worked according to new R75 Draft

####################################################################################################
# ToDo: Implement more sophisticated test case for mutually exclusive support information
####################################################################################################

from attglobals import *

####################################################################################################

COM Test command
AT^SVCC=?
WAIT FOR OK

####################################################################################################

COM Execute command - Response 0 (Not supported)
AT^SVCC
WAITFOR  (1,'^SVCC: 0')

####################################################################################################

COM Execute command - Response 1 (Supported)
AT^SVCC
WAITFOR  (1,'^SVCC: 1')

####################################################################################################